home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / GUICtrlCreateLabel.au3 < prev    next >
Text File  |  2006-06-17  |  726b  |  21 lines

  1. #include <GUIConstants.au3>
  2.  
  3. GUICreate("My GUI")  ; will create a dialog box that when displayed is centered
  4.  
  5. GUISetHelp("notepad")  ; will run notepad if F1 is typed
  6. Opt("GUICoordMode",2)
  7.  
  8. $widthCell=70
  9. GUICtrlCreateLabel ("Line 1 Cell 1",  10, 30, $widthCell) ; first cell 70 width
  10. GUICtrlCreateLabel ("Line 2 Cell 1",  -1, 0) ; next line
  11. GUICtrlCreateLabel ("Line 3 Cell 2",  0, 0) ; next line and next cell  
  12. GUICtrlCreateLabel ("Line 3 Cell 3",  0, -1) ; next cell same line 
  13. GUICtrlCreateLabel ("Line 4 Cell 1",  -3*$widthcell, 0) ; next line Cell1
  14.  
  15. GUISetState ()      ; will display an empty dialog box
  16.  
  17. ; Run the GUI until the dialog is closed
  18. Do
  19.     $msg = GUIGetMsg()
  20. Until $msg = $GUI_EVENT_CLOSE
  21.